home *** CD-ROM | disk | FTP | other *** search
/ STraTOS 1997 April & May / STraTOS 1 - 1997 April & May.iso / CD01 / INTERNET / SITES / GRAHAM / XA_6S.ZIP / SOURCE / EXTEND.C < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-29  |  381 b   |  24 lines

  1. /*
  2.  * XaAES - XaAES Ain't the AES
  3.  *
  4.  * A multitasking AES replacement for MiNT
  5.  *
  6.  */
  7.  
  8. #include "XA_DEFS.H"
  9. #include "XA_TYPES.H"
  10. #include "XA_GLOBL.H"
  11.  
  12. /*
  13.     Extended XaAES calls
  14. */
  15.  
  16. /*
  17.     Get the file handle of the client reply pipe
  18. */
  19. unsigned long XA_appl_pipe(short clnt_pid, AESPB *pb)
  20. {
  21.     pb->intout[0]=clients[clnt_pid].clnt_pipe_rd;
  22.     return XAC_DONE;
  23. }
  24.